home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / FAN6.L2 < prev    next >
Text File  |  1996-04-01  |  3KB  |  127 lines

  1. name Fanuc 6T
  2.  
  3. O >4
  4. N >3
  5. G >2
  6. X ->3.>4
  7. Z ->3.>4
  8. D >2
  9. I ->3.>4
  10. K ->3.>4
  11. U ->3.>4
  12. W ->3.>4
  13. P ->3.>4
  14. A 60 P
  15. Q ->3.>4
  16. q ->3.>4 Q
  17. R ->3.>4
  18. F >3.>3
  19. T 2
  20. S >4
  21. M >2
  22.  
  23. RevSigns X I                          # List of letters to reverse signs  
  24.  
  25. ModalGs 0 1 2 3 73 76 80 81 82 83 84 85  # List of g codes that are modal    
  26.  
  27. First#? N                             # Y or N  'Output 1st sequence no.  
  28. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  29.  
  30. Comment ( )                           # Begin End comment char.           
  31.  
  32. HCode Z                               # X or X U  'Horizontal char.       
  33. VCode X                               # Y or Y V  'Vertical char.         
  34. FeedCode F                            # Feed rate char.                   
  35.  
  36. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  37. Coolant 8 9 7                         # On, Off & Mist m codes            
  38. SpeedType G 97 96                     # CSS and RPM g codes               
  39. FeedType G 95 94                      # IPR & IPM g codes                 
  40.  
  41.  
  42. ByDiameter? Y                         # Y or N  'Output X val. by diameter
  43.  
  44. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  45. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  46.  
  47. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  48.  
  49. Inch/MM 20 21                         # Inch & Metric g codes             
  50.  
  51. CtrCode K I                           # I J or R or I J K L               
  52.  
  53. Feed G1                               # Linear move                       
  54. Rapid G0                              # Rapid positioning word            
  55. Cw G2                                 # Circular move clockwise           
  56. Ccw G3                                # Circular move counter clockwise   
  57.  
  58. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  59.  
  60.  
  61. AutoThread                            # Automatic thread canned cycle     
  62. G76 A[TParams] Q[VBite] R0
  63. G76 X[V] Z[H] R[StartAng] P[Depth] q[Peck1] F[Frate]
  64. end
  65.  
  66. Drill                                 # Drilling canned/manual cycle      
  67. G1 Z[H] F[Frate]
  68. G0 Z[SClear]
  69. end
  70.  
  71. Peck                                  # Pecking canned/manual cycle       
  72. none
  73. end
  74.  
  75. Tap                                   # Tapping canned/manual cycle       
  76. G78 Z[H] F[FRate]
  77. end cancel
  78.  
  79. Ream                                  # Reaming canned/manual cycle       
  80. G1 Z[H] F[FRate]
  81. G0 Z[SClear]
  82. end
  83.  
  84. Cancel                                # Cancel a canned/manual cycle      
  85. G80
  86. end
  87.  
  88. StartCode                             # Start of the program              
  89. O[Program#]
  90. T0
  91. end
  92.  
  93. 1stToolChange                         # First tool change                 
  94. G28 W0
  95. G28 U0
  96. G50 X0 Z0
  97. T[Tool]
  98. G0 X[V]
  99. G[FeedType] G[SpeedType] S[Speed] M[Direct]
  100. Z[H] M[Cool]
  101. End
  102.  
  103. Infeed                                # Enable cutter comp                
  104. G1 X[V] Z[H] D[Dcomp] F[FRate]
  105. end
  106.  
  107. Outfeed                               # Disable cutter comp               
  108. G1 X[V] Z[H] F[FRate]
  109. end
  110.  
  111. ToolChange                            # Secondary tool changes            
  112. G0 Z[ToolH] M5
  113. T0
  114. T[Tool]
  115. G0 X[V]
  116. G[FeedType] G[SpeedType] S[Speed] M[Direct]
  117. Z[H] M[Cool]
  118. End
  119.  
  120. EndCode                               # End of the program                
  121. G0 Z[ToolH]
  122. G28 W0 M5
  123. G28 U0
  124. M30
  125. End
  126.  
  127.